home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / vi / vim-4.000 / vim-4 / vim-4.2 / src / proto / window.pro < prev   
Encoding:
Text File  |  1996-06-17  |  1.0 KB  |  26 lines

  1. /* window.c */
  2. void do_window __PARMS((int nchar, long Prenum));
  3. int win_split __PARMS((int new_height, int redraw));
  4. int win_count __PARMS((void));
  5. int make_windows __PARMS((int count));
  6. void win_equal __PARMS((WIN *next_curwin, int redraw));
  7. void close_windows __PARMS((BUF *buf));
  8. void close_window __PARMS((WIN *win, int free_buf));
  9. void close_others __PARMS((int message));
  10. void win_init __PARMS((WIN *wp));
  11. void win_enter __PARMS((WIN *wp, int undo_sync));
  12. WIN *win_alloc __PARMS((WIN *after));
  13. void win_free __PARMS((WIN *wp));
  14. int win_alloc_lsize __PARMS((WIN *wp));
  15. void win_free_lsize __PARMS((WIN *wp));
  16. void screen_new_rows __PARMS((void));
  17. void win_setheight __PARMS((int height));
  18. void win_drag_status_line __PARMS((int offset));
  19. void win_comp_scroll __PARMS((WIN *wp));
  20. void command_height __PARMS((void));
  21. void last_status __PARMS((void));
  22. char_u *file_name_at_cursor __PARMS((int options));
  23. char_u *get_file_name_in_path __PARMS((char_u *ptr, int col, int options));
  24. int min_rows __PARMS((void));
  25. int only_one_window __PARMS((void));
  26.